home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-01-24 | 481 b | 12 lines | [TEXT/ToyS] |
- tell application "FileMaker Pro"
- go to database "Source Database"
- go to layout "Data Entry"
- show (every record of database "Source Database" whose first cell = "Fred")
- sort first layout of window "Source Database" by field "Last Name"
- set recordsFound to every record of document "Source Database"
- repeat with i in recordsFound
- create record at layout "Data Entry" of database "Archive Database" with data i
- end repeat
- go to database "Archive Database"
- activate
- end tell